AI Verified

Name

WPML minor edit on by default

About

Turn on the 'minor edit' option by default, so all pages and posts edits aren't pushed to translations.

Language

PHP

Rating

Voted: 1 by 1 user(s)

Codevault

Graffic Traffic

Scroll down to see more snippets from this codevault.

Wordpress Compatability

The author has indicated that this snippet is compatable up to wordpress version: Not Specified

Our AI bot has checked this snippet is compatable up to wordpress version: 6.1

Code Snippet Plugin Sync

Free & Pro

Download this snippet by clicking the download button, then head over to the Code Snippet Plugin settings in your wordpress admin dashboard, select the import menu then upload this file to import into your wordpress site.

Pro Only (Coming Soon)

You will be able to click a button and sync this snippet to your wordpress site automatically and from your dashboard manage all code snippets across all your wordpress sites that have the Code Snippets Pro plugin installed.

History

Last modified:

15/11/2023

Important Note

This snippet has the following status:

AI Verified

This snippet has been tested by our AI bot, see any comments below.

AI Bot Comments:

Found 0 vulnerabilities

WPML minor edit on by default

 
                    
1/**
2 * Javascript added in admin screens
3 * 1. Enable the "Minor edit - dont'update translation" by WPML checkbox by default on post editing screen
4 *
5 **/
6 
7add_action('admin_footer', 'mr_admin_footer');
8function mr_admin_footer()
9{
10 global $pagenow;
11 // $screen = get_current_screen();
12 if ( $pagenow == 'post.php' ) {
13 
14 // 1. Enable the "Minor edit - dont'update translation" by WPML checkbox by default on post editing screen
15 ?>
16 <script type="text/javascript">
17 jQuery('input[name="icl_minor_edit"]').attr('checked','checked');
18 </script>
19 <?php
20 }
21 
22}

1

Related Snippets

Please see some snippets below related to this snippet..

WordPress Admin

AI Verified

0

MX ยท Add All Post Types to Dashboard "At a Glance"

Added: 1 year ago

Last Updated: 1 year ago

Add all post_types found in the database to the "At a Glance" dashboard widget

WordPress Admin

AI Verified

0

Remove WordPress Version Number

Added: 1 year ago

Last Updated: 1 year ago

Removes wordpress version that is present

WordPress Admin

AI Verified

0

Hide certain items in the WordPress Sidebar

Added: 6 months ago

Last Updated: 6 months ago

Perhaps you wish to conceal the Plugin item or other elements from the WordPress Dashboard Sidebar.

Other Snippets in this Codevault

These are some popular snippets from this users codevault..

WordPress Admin

AI Verified

1

WPML minor edit on by default

Added: 1 year ago

Last Updated: 7 months ago

Turn on the 'minor edit' option by default, so all pages and posts edits aren't pushed to translations.

WooCommerce

AI Verified

0

Sort order items by SKU

Added: 1 year ago

Last Updated: 1 year ago

Sort the ordered items in woocommerce order by the SKU (as opposed to the order in which the user added the product to the cart)

Security

AI Verified

0

Disable Wordpress comments

Added: 7 months ago

Last Updated: 7 months ago